home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 140
/
(Vol 140) Sep 19 2011.iso
/
Games
/
battle_of_the_bands.swf
/
scripts
/
koko
/
URLUtil.as
< prev
Wrap
Text File
|
2011-09-19
|
489b
|
22 lines
package koko
{
import flash.external.ExternalInterface;
public class URLUtil
{
protected static const WINDOW_OPEN_FUNCTION:String = "window.open";
public function URLUtil()
{
super();
}
public static function openWindow(param1:String, param2:String = "_blank", param3:String = "") : void
{
ExternalInterface.call(WINDOW_OPEN_FUNCTION,param1,param2,param3);
}
}
}